home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / man / clean.hlp < prev    next >
Text File  |  1997-04-13  |  939b  |  29 lines

  1. clean [-verbose] <Root> ...
  2.  
  3. Command `clean' removes all intermediate files produced by
  4. previous `compile' or `compile_to_c'.
  5. Names (<Root> ...) can have the Eiffel suffix, no suffix
  6. at all, or the suffix used for SmallEiffel command files on 
  7. your system (.make on UNIX or .BAT on DOS for example).
  8.  
  9. - Example 1 - 
  10.    To remove intermediate files produced for the HELLO_WORLD 
  11.    program. 
  12.    Type:                       clean hello_world 
  13.    You can also type:          clean hello_world.e
  14.    or you can also type:       clean HELLO_WORLD
  15.    on Unix, you can type:      clean hello_world.make
  16.    on DOS, you can do:         clean hello_world.BAT
  17.    
  18. - Example 2 - 
  19.    Under Unix or DOS, remove all intermediates files in the
  20.    current directory : clean *.e
  21.    If the root class file is not in the current directory,
  22.    you can type (for Unix) : clean *.make 
  23.  
  24. Option -verbose can be used to see whath files are removed.
  25.    
  26.    
  27.    
  28.    
  29.